home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_6 / write473.lha / WRITE / Module / EDIT.KEY < prev    next >
Text File  |  1995-05-22  |  426b  |  40 lines

  1. /*
  2.  *   $VER: EDIT.KEY 4.0039 (22-Mai-95)
  3.  */
  4.  
  5. VERSIONCHECK 40000 "EDIT.KEY"
  6.  
  7. KEY "control y"
  8.   DELETELINE;
  9.  
  10. KEY "alt y"
  11.   UNDELLINE;
  12.  
  13. KEY "backspace"
  14.   BACKSPACE 1;
  15.  
  16. KEY "shift Backspace"
  17.   CURSORLEFT 0
  18.   DELETEAREA @CURSOR @CURSOR @SOL @SOL 
  19.   GOTO @SOL @SOL ;
  20.  
  21. KEY "tab"
  22.   TAB 0;
  23.  
  24. KEY "shift tab"
  25.   BACKTAB;
  26.  
  27. KEY "numpad enter"
  28.   RETURN;
  29.  
  30. KEY "return"
  31.   RETURN;
  32.  
  33. KEY "delete"
  34.   DELETE;
  35.  
  36. KEY "shift delete"
  37.   DELETETOEOL;
  38.  
  39.  
  40.